home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 333_02 / p051.awk < prev    next >
Text File  |  1989-04-21  |  215b  |  10 lines

  1.  
  2.  
  3. /Asia/        { pop["Asia"] += $3 }
  4. /Europe/    { pop["Europe"] += $3 }
  5. END        {
  6.             print "Asian population is", pop["Asia"], "million."
  7.             print "European population is", pop["Europe"], \
  8.               "million."
  9.         }
  10.